home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / sranlib / Makefile < prev    next >
Encoding:
Makefile  |  1990-05-11  |  492 b   |  18 lines

  1. # The FIRST_BYTE preprocessor variable should be set to HIGH if the
  2. # host machine puts the most significant byte of a number first (e.g.
  3. # 68000s), and otherwise should be set to LOW (e.g. VAXes).
  4. # The FLOATING_FORM variable should be set to IEEE if the host machine
  5. # uses IEEE format, or else to OTHER.
  6. #
  7.  
  8. CFLAGS        = -O -DFIRST_BYTE=LOW -DFLOATING_FORM=IEEE \
  9.             -DTARGET=HOST -I../sas
  10.  
  11. ../bin/sranlib:        sranlib.o
  12.     $(CC) sranlib.o -o ../bin/sranlib
  13.  
  14. clean:
  15.     rm -f *.o ../bin/sranlib
  16.